home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
prog_gen
/
t4diblib.zip
/
VIEWLIB2.F3_
/
VIEWLIB2.F3
Wrap
Text File
|
1995-11-14
|
2KB
|
68 lines
VERSION 2.00
Begin Form Form1
Caption = "VIEWLIB2"
ClientHeight = 1956
ClientLeft = 876
ClientTop = 1524
ClientWidth = 4212
Height = 2376
Left = 828
LinkTopic = "Form1"
ScaleHeight = 1956
ScaleWidth = 4212
Top = 1152
Width = 4308
Begin CommandButton Command1
Caption = "Quit"
Height = 372
Left = 2280
TabIndex = 1
Top = 1440
Width = 972
End
Begin T4DILIB dilib1
Caption = "dilib1"
ControlMode = 0 'Lib -> PIC
Height = 372
Left = 3360
Top = 1440
Visible = 0 'False
Width = 732
End
Begin ListBox List1
Height = 1176
Left = 2280
TabIndex = 0
Top = 120
Width = 1812
End
End
Option Explicit
Sub Command1_Click ()
End
End Sub
Sub Form_Load ()
Dim myctr%
Top = (screen.Height - Height) / 2!
Left = (screen.Width - Width) / 2!
dilib1.LibraryName = "bluespin.ilb"
dilib1.Action = IM_ACTION_OPENLIBRARY
For myctr = 1 To dilib1.MemberCount
'Set MemberNumber to update MemberName
dilib1.MemberNumber = myctr
'This time, add the member name.
list1.AddItem dilib1.MemberName
Next myctr
End Sub
Sub List1_Click ()
'Set the member name from the list-box.
dilib1.MemberName = list1.List(list1.ListIndex)
'Fetch and display.
dilib1.Action = IM_ACTION_GETMEMBER
Picture = dilib1.Picture
End Sub